home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Event / Static / Makefile < prev   
Makefile  |  1995-09-04  |  2KB  |  104 lines

  1.  
  2. ObjectFiles    =        \
  3.             o.Event    \
  4.             o.MClaimInit    \
  5.             o.MRelease    \
  6.             o.MRelMsg    \
  7.             o.MRelWindow    \
  8.             o.taskname    \
  9.  
  10.  
  11. LibName        =    Event
  12.  
  13. # Template makefile which makes normal 
  14. # .o files for use in the main static
  15. # linking DeskLib.
  16.  
  17. # The macro $(ObjectFiles) should be set at the 
  18. # start of this file to be a space-separated
  19. # list of object files.
  20. # This is done by 'Makatic'.
  21.  
  22. # The macro $(LibName) should also be set at the 
  23. # start of this file, to be the name of the 
  24. # DeskLib sublibrary.
  25. # This is done by 'Makatic'.
  26.  
  27. # Compiler and linker flags, These can be anything. 
  28. # All essential flags are included in the macros 
  29. # $(CC) and $(ASM)
  30. #
  31. CCFlags        =    -ffahi $(CCExtra) -depend !Depend -throwback -D_DeskLib_$(LibName) -I,C:
  32. ASMFlags    =    -Stamp -NoCache -CloseExec -Quit $(ASMExtra)
  33.  
  34. CC        =    cc -c $(CCFlags)
  35. ASM        =    objasm $(ASMFlags)
  36.  
  37.  
  38. # -------------------------------------------------------
  39. # Everything below here should probably not be changed...
  40. # -------------------------------------------------------
  41.  
  42. # Here's what we want to make...
  43. #
  44. All:        $(ObjectFiles)
  45.  
  46.  
  47. VPATH = @.^
  48.  
  49. .SUFFIXES:    .c .s .o
  50.  
  51. .c.o:
  52.     $(CC) $< -o $@
  53.     
  54. .s.o:
  55.     $(ASM) -from $< -to $@
  56.  
  57.  
  58.  
  59. # Dynamic dependencies:
  60. o.Event:    ^.c.Event
  61. o.Event:    DeskLib:h.Error
  62. o.Event:    DeskLib:h.Core
  63. o.Event:    DeskLib:h.WimpSWIs
  64. o.Event:    DeskLib:h.Wimp
  65. o.Event:    ^.h.EventDefs
  66. o.Event:    DeskLib:h.LinkList
  67. o.Event:    DeskLib:h.Event
  68. o.MClaimInit:    ^.c.MClaimInit
  69. o.MClaimInit:    ^.h.EMsgDefs
  70. o.MClaimInit:    DeskLib:h.LinkList
  71. o.MClaimInit:    DeskLib:h.Core
  72. o.MClaimInit:    DeskLib:h.Error
  73. o.MClaimInit:    DeskLib:h.Event
  74. o.MClaimInit:    DeskLib:h.Wimp
  75. o.MClaimInit:    DeskLib:h.EventMsg
  76. o.MRelease:    ^.c.MRelease
  77. o.MRelease:    ^.h.EMsgDefs
  78. o.MRelease:    DeskLib:h.LinkList
  79. o.MRelease:    DeskLib:h.Core
  80. o.MRelease:    DeskLib:h.Error
  81. o.MRelease:    DeskLib:h.Event
  82. o.MRelease:    DeskLib:h.Wimp
  83. o.MRelease:    DeskLib:h.EventMsg
  84. o.MRelMsg:    ^.c.MRelMsg
  85. o.MRelMsg:    ^.h.EMsgDefs
  86. o.MRelMsg:    DeskLib:h.LinkList
  87. o.MRelMsg:    DeskLib:h.Core
  88. o.MRelMsg:    DeskLib:h.Error
  89. o.MRelMsg:    DeskLib:h.Event
  90. o.MRelMsg:    DeskLib:h.Wimp
  91. o.MRelMsg:    DeskLib:h.EventMsg
  92. o.MRelWindow:    ^.c.MRelWindow
  93. o.MRelWindow:    ^.h.EMsgDefs
  94. o.MRelWindow:    DeskLib:h.LinkList
  95. o.MRelWindow:    DeskLib:h.Core
  96. o.MRelWindow:    DeskLib:h.Error
  97. o.MRelWindow:    DeskLib:h.Event
  98. o.MRelWindow:    DeskLib:h.Wimp
  99. o.MRelWindow:    DeskLib:h.EventMsg
  100. o.taskname:    ^.c.taskname
  101. o.taskname:    DeskLib:h.Event
  102. o.taskname:    DeskLib:h.Core
  103. o.taskname:    DeskLib:h.Wimp
  104.